home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
iproj
/
ques4.frm
< prev
next >
Wrap
Text File
|
1995-09-06
|
3KB
|
111 lines
VERSION 2.00
Begin Form QUES4
BackColor = &H00800080&
BorderStyle = 3 'Fixed Double
Caption = "Question 4"
ClientHeight = 4170
ClientLeft = 1095
ClientTop = 1485
ClientWidth = 6360
ClipControls = 0 'False
ControlBox = 0 'False
Height = 4575
Left = 1035
LinkTopic = "QUES4"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 4170
ScaleWidth = 6360
Top = 1140
Width = 6480
Begin CommandButton Command1
BackColor = &H00C0C000&
Caption = "Yes, the right amount of information"
Height = 495
Index = 0
Left = 1440
TabIndex = 3
Top = 1320
Width = 3375
End
Begin CommandButton Command1
BackColor = &H00C0C000&
Caption = "No, more than I can use"
Height = 495
Index = 1
Left = 1440
TabIndex = 2
Top = 1920
Width = 3375
End
Begin CommandButton Command1
BackColor = &H00C0C000&
Caption = "No, not enough information"
Height = 495
Index = 2
Left = 1440
TabIndex = 1
Top = 2520
Width = 3375
End
Begin CommandButton Command2
BackColor = &H00C0C000&
Cancel = -1 'True
Caption = "Cancel"
Default = -1 'True
Height = 495
Left = 2520
TabIndex = 0
Top = 3240
Width = 1695
End
Begin Label Label1
BackColor = &H00800080&
Caption = "Overall, do you get the right amount of information?"
ForeColor = &H00FFFFFF&
Height = 375
Left = 960
TabIndex = 5
Top = 840
Width = 4575
End
Begin Label Label2
BackColor = &H00800080&
Caption = "You get information from many sources (clients, editors, internal sources, articles, etc.) "
ForeColor = &H00FFFFFF&
Height = 495
Left = 360
TabIndex = 4
Top = 120
Width = 5655
End
End
Sub Command1_Click (index As Integer)
Question14 = ""
Select Case index
Case 0
Question4 = "1"
Case 1
Question4 = "2"
Case 2
Question4 = "3"
End Select
If Question4 <> "" Then
ques5.Show
Else
MsgBox ("Please answer the current question before moving on!")
End If
End Sub
Sub Command2_Click ()
response = MsgBox("Do you really want to close without sending in your responses?", 1, "Are you sure?")
If response = 1 Then
End
End If
End Sub